home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / FILER / SMART.ZIP / Tips
Text File  |  1998-03-04  |  2KB  |  43 lines

  1. Read the application's Help file first, then read this if you need more help
  2. to figure out how to create a patterns file. You'll find it helpful to refer
  3. to the Help file's tables of values alongside this text.
  4.  
  5. Here are some examples, mainly from my own Patterns file.
  6.  
  7. ADFS::Nisu.$            31
  8. My root directory is quite crowded, almost entirely with plain
  9. directories, so I like it to open with small icons. This means I have to
  10. affect the icon options only: mask = 3, value = 1.
  11.  
  12. *.h                31
  13. *.c                31
  14. Similar options for C source directories, any path ending in a directory
  15. called c or h (I have several more lines like this for different types
  16. of source).
  17.  
  18. *.WordProc.Letters        CC
  19. For letters you're likely to want to sort them by date. The sort options
  20. are a little more complicated. C for the mask is easy to work out from
  21. the above table, but for the value we want to write 3 into bits 2-3, so
  22. shifting 3 left by 2 bits works out as C (the number in brackets).
  23.  
  24. *.!NewsDir.newsbase.debug%.*    FD
  25. A certain set of directories used by Newsbase (the debug% can expand to
  26. debugmail or debugnews in this case) contain lots of files where the
  27. time/date is much more important than the name, so I have these sorted
  28. by date and displayed as small icons. The mask to affect both types of
  29. option is F, and we need to boolean OR (or add) the sort by date value
  30. (C) with the small icons value (1), giving D.
  31.  
  32. *                1180031
  33. I have this at the bottom of my Patterns file to catch anything that
  34. doesn't match any of the previous patterns in the file. It's the new
  35. extended option. The first digit 1 means use one set of options if there
  36. are fewer or equal than a certain number of files in the directory, and
  37. another if there are more than this number. That number is read from the
  38. next two digits in hexadecimal, in this case &18 = 24. The next two
  39. digits are the options to use for a low number of files, in this case 00
  40. means no change from the machine's configured options. The last two
  41. digits are the options to use for a large number of files, in this case
  42. 31: use small icons.
  43.